home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
Borland Visual dBASE Professiona v7.0
/
DATA1.CAB
/
Sample_dBASE
/
Fleet
/
Fleet.wfm
< prev
next >
Wrap
Text File
|
1997-11-20
|
1KB
|
58 lines
//--------------------------------------------------------------
//
// Fleet.wfm -- The Fleet form
//
// This form contains the primary MenuBar and Toolbar for
// the Fleet application. The form contains no controls.
//
// Dependencies: FLEET.MNU
// FLEET.ICO
//
// Visual dBASE Samples Group
//
// $Revision: 1.4 $
//
// Copyright (c) 1997, Borland International, Inc.
// All rights reserved.
//
SET TALK OFF
** END HEADER -- do not remove this line
//
// Generated on 09/22/97
//
parameter bModal
local f
f = new fleetForm()
if (bModal)
f.mdi = false // ensure not MDI
f.readModal()
else
f.open()
endif
class fleetForm of FORM
with (this)
onClose = class::FORM_ONCLOSE
scaleFontSize = 8
scaleFontBold = false
height = 1.4737
left = 10
top = 2
width = 50
text = "Fleet Manager"
mdi = false
sizeable = false
menuFile = "FLEET.MNU"
maximize = false
icon = "filename Fleet.ico"
endwith
// {Linked Method} form.onClose
function form_onClose
if ( TYPE("this.app") == "O" )
return ( this.app.close() )
endif
return false
endclass